Conversation
|
@radu-matei @Mossaka as people working in the WASM space, what do you think of this change? This would require all implementations to produce This also means that this crate is not really useable for browser based WebAssembly (since the http implementation is |
353d418 to
081eb94
Compare
Our crates need to be usable in the browser via WebAssembly. |
|
@ctaggart can you talk more through the use case for browser WASM? Wouldn't there be issues with cors? |
|
Discussed this with folks, and we agree we want to support running this SDK in the browser. |
This PR removes the distinction between
wasm32targets and other targets when it comes to whether futures areSendor not. This makes it so that futures must always beSend. This greatly simplifies the code.In order for this to work though, we need to be able to move away from requiring
Reqwest. This requires two further changes:Thoughts?